home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_AddrCmp.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  67 lines

  1. /* 
  2.  * Net_AddrCmp.c --
  3.  *
  4.  *    Routines to compare network addresses for equality..
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_AddrCmp.c,v 1.1 92/03/27 16:17:09 voelker Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include "sprite.h"
  21. #include "net.h"
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * Net_AddrCmp --
  28.  *
  29.  *    Compares two network addresses for equality.  
  30.  *    
  31.  *
  32.  * Results:
  33.  *    0 if the addresses are equal, 1 otherwise
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. Net_AddrCmp(aPtr, bPtr)
  43.     Net_Address        *aPtr;    /* First address. */
  44.     Net_Address        *bPtr;    /* Second address. */
  45. {
  46.     int result;
  47.     if (aPtr->type != bPtr->type) {
  48.     return 1;                    
  49.     }
  50.     switch(aPtr->type) {    
  51.     case NET_ADDRESS_ETHER:     
  52.         result = Net_EtherAddrCmp(aPtr->address.ether, bPtr->address.ether);
  53.         break;                        
  54.     case NET_ADDRESS_ULTRA:                    
  55.         result = Net_UltraAddrCmp(aPtr->address.ultra, bPtr->address.ultra);
  56.         break;                        
  57.     case NET_ADDRESS_FDDI:                    
  58.         result = Net_FDDIAddrCmp(aPtr->address.fddi, bPtr->address.fddi);
  59.         break;
  60.     case NET_ADDRESS_INET:
  61.         result = Net_InetAddrCmp(aPtr->address.inet, bPtr->address.inet);
  62.         break;
  63.     }
  64.     return result;
  65. }
  66.  
  67.